home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: Alpha / Whiteline Alpha.iso / linux / atari / source / source.lzh / atari-linux-0.01pl3 / lib / bcopy.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-05  |  485 b   |  18 lines

  1. /*
  2.  *  linux/lib/bcopy.c
  3.  *  Copyright (C) 1991, 1992 Free Software Foundation, Inc.
  4.  *
  5.  * This software is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU Library General Public License as
  7.  * published by the Free Software Foundation; either version 2 of the
  8.  * License, or (at your option) any later version.
  9.  */
  10.  
  11. #include <linux/types.h>
  12. #include <linux/string.h>
  13.  
  14. void bcopy (const void *src, void *dest, size_t n)
  15. {
  16.     memcpy (dest, src, n);
  17. }
  18.